From eb43fae8d3f904265ee914689b5e0e370d68c4d2 Mon Sep 17 00:00:00 2001 From: Platonides Date: Sun, 27 Nov 2011 16:12:20 +0000 Subject: [PATCH] Test to ensure that after adding a category to a template, the articles get moved into that category. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Articles containing [[es:Plantilla:Ficha_de_película]] showed the categories at the bottom, but were not in categorylinks (solved by a doing a null edit to the template and waiting for the job queue, but how did that situation happen to begin with?). --- .../includes/TemplateCategoriesTest.php | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 tests/phpunit/includes/TemplateCategoriesTest.php diff --git a/tests/phpunit/includes/TemplateCategoriesTest.php b/tests/phpunit/includes/TemplateCategoriesTest.php new file mode 100644 index 0000000000..0a6e18c442 --- /dev/null +++ b/tests/phpunit/includes/TemplateCategoriesTest.php @@ -0,0 +1,32 @@ +mRights['*'] = array( 'createpage', 'edit', 'purge' ); + + $status = $article->doEdit( '{{Categorising template}}', 'Create a page with a template', 0 ); + $this->assertEquals( $title->getParentCategories(), array() ); + + $template = new Article( Title::newFromText( 'Template:Categorising template' ) ); + $status = $template->doEdit( '[[Category:Solved bugs]]', 'Add a category through a template', 0 ); + + // Run the job queue + $jobs = new RunJobs; + $jobs->loadParamsAndArgs( null, array( 'quiet' => true ), null ); + $jobs->execute(); + + $this->assertEquals( $title->getParentCategories(), array( 'Category:Solved_bugs' => $title->getPrefixedText() ) ); + } + +} -- 2.20.1